home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #11 / Amiga Plus CD - 2004 - No. 11.iso / AmiSoft / Dev / misc / temgen.lha / Temgen / tg-0.11 / istack.h < prev    next >
C/C++ Source or Header  |  2002-12-18  |  197b  |  12 lines

  1. #ifndef __istack_h_
  2. #define __istack_h_
  3.  
  4. /* int stack */
  5.  
  6. struct istack *is_init( void );
  7. void is_push( struct istack*, int );
  8. int  is_top( struct istack* );
  9. int  is_pop( struct istack* );
  10.  
  11. #endif
  12.